|
The drawdown is the measure of the decline from a historical peak in some variable (typically the cumulative profit or total open equity of a financial trading strategy). Somewhat more formally, if is a random process with ''X''(0) = 0, the drawdown at time ''T'', denoted , is defined as The maximum drawdown (MDD) up to time is the maximum of the Drawdown over the history of the variable. More formally, The following pseudocode computes the Drawdown ("DD") and Max Drawdown ("MDD") of the variable "NAV", the Net Asset Value of an investment. Drawdown and Max Drawdown are calculated as percentages: MDD = 0 peak = -99999 for i = 1 to N step 1 if (NAV() > peak) # peak will be the maximum value seen so far (0 to i) peak = NAV() endif DD() = 100.0 * (peak - NAV()) / peak if (DD() > MDD) # Same idea as peak variable, MDD keeps track of the maximum drawdown so far. MDD = DD() endif endfor ==Finance Definitions== There are two main definitions of a drawdown: 抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)』 ■ウィキペディアで「Drawdown (economics)」の詳細全文を読む スポンサード リンク
|